Learn R Programming

bnlearn (version 4.4.1)

gRain integration: Import and export networks from the gRain package

Description

Convert bn.fit objects to grain objects and vice versa.

Usage

# S3 method for grain
as.bn.fit(x, ...)
# S3 method for bn.fit
as.grain(x)
# S3 method for grain
as.bn(x, ..., check.cycles = TRUE)

Arguments

x

an object of class grain(code) (for as.bn.fit) or bn.fit() (for as.grain).

extra arguments from the generic method (currently ignored).

check.cycles

a boolean value. If FALSE the returned network will not be checked for cycles.

Value

An object of class grain (for as.grain) or bn.fit (for as.bn.fit).

Examples

Run this code
# NOT RUN {
library(gRain)
a = bn.fit(hc(learning.test), learning.test)
b = as.grain(a)
c = as.bn.fit(b)
# }

Run the code above in your browser using DataLab